home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Pascal Super Library
/
Pascal Super Library (CW International)(1997).bin
/
DELPHI32
/
COMM
/
ASYNCTIM
/
BIN.ZIP
/
AsyncTimerReg.pas
< prev
Wrap
Pascal/Delphi Source File
|
1996-06-18
|
202b
|
18 lines
unit AsyncTimerReg;
interface
procedure Register;
implementation
uses
Classes, AsyncTimer;
procedure Register;
begin
RegisterComponents( 'Samples', [ TAsyncTimer] );
end;
end.